Visual Studio - "{ }" settings

Posted by Xorty on Stack Overflow See other posts from Stack Overflow or by Xorty
Published on 2010-05-15T21:51:55Z Indexed on 2010/05/15 22:02 UTC
Read the original article Hit count: 297

Filed under:
|

Seriously, I don't know what to google. Here's the thing, I like this java-like code writting:

if (condition == true) {
   doSomeStuff();
}

But VisualStudio "helps" me with his own "style", which I don't like and I am unable to change (after rather big time of desperate checking all settings :/)

if (condition == true)
{
  DoStuff();
}

I obviously want the "{" char to be in same line where condition is ...

I am using MS Visual Studio 2010 professional

Any help appreciated!

© Stack Overflow or respective owner

Related posts about visual-studio

Related posts about source-code